home *** CD-ROM | disk | FTP | other *** search
- /****************************************************************************
- *
- * FILE: Pstrcspn.c
- * CREA: Sven Axelsson, GU
- * MODF: fredag 13 april 1990 @ 12.51.48
- * HIST: 90-04-13 (1.0) First version.
- *
- ****************************************************************************/
-
- # include "pstring.h"
-
-
- short
- Pstrcspn(
- register Str255 s1,
- register Str255 s2 )
- {
- register unsigned int i,
- j;
- unsigned int l1 = s1[0],
- l2 = s2[0];
-
- for( i = 1; i <= l1; i++ ) {
- for( j = 1; j <= l2; j++ ) {
- if( s1[i] == s2[j] ) {
- goto exit;
- }
- }
- }
-
- exit:
- return( --i );
- }